Bugfix: Update of Windows vm and vmss with non-empty additional_unattend_config.content #377
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request fixes a crash when updating a
azurerm_virtual_machine
orazurerm_virtual_machine_scale_set
resource which has been previously created with a value set forcontent
in theadditional_unattend_config
.Terraform Version
v0.10.5
Terraform AzureRM Provider Version
0.2.2
Affected Resources
azurerm_virtual_machine
azurerm_virtual_machine_scale_set
Steps to reproduce
azurerm_virtual_machine
with a non-empty fieldcontent
in theadditional_unattend_config
block such asterraform apply
vm_size
terraform apply
Expected Behavior
terraform apply
, the resource should be changed accordingly, e.g. a resize should have been performedActual Behavior
Cause analysis
Steps to reproduce via tests
azurerm_virtual_machine
This pull request includes a new test
TestAccAzureRMVirtualMachine_windowsMachineResize
which resizes a Windows virtual machine with additionalUnattendContent.content set.Without the changes, the test fails:
With the changes, the test passes:
azurerm_virtual_machine_scale_set
This pull request includes a new test
TestAccAzureRMVirtualMachineScaleSet_basicWindows_managedDisk_resize
which resizes a Windows virtual machine scale set with additionalUnattendContent.content set.Without the changes, the test fails:
With the changes, the test passes: